std::basic_fstream::swap

From Cppreference

Jump to: navigation, search
void swap( basic_fstream& other );
(C++0x)

Exchanges the state of the stream with those of other.

This is done by calling ​basic_istream<CharT, Traits>::swap(other) and ​rdbuf->swap(other->rdbuf).

Contents

Parameters

other - stream to exchange the state with

Return value

(none)

Example

See also

operator= (C++0x)
moves the file stream
(public member function)
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox
In other languages